Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

222
Views
"GET http://localhost:8801/main.js net::ERR_ABORTED 404 (Not Found)" error

Google thinks that I am trying to read data from localhost:8801, but I am trying to read that data from another file called "main.js." The error is "GET http://localhost:8801/main.js net::ERR_ABORTED 404 (Not Found)" How can I reference the command from main.js without google thinking that it is a subdirectory. Here is my code in index.html:

https://sourceb.in/iuMyon5XI7

Thank you in advance.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

I think you are reffering to Chrome browser when you say google (it's confusing) but google have nothing to do with the issue you're facing.
anyway I understand you're trying to get json data from local file; try this

var json = require('./data.json'); //(with your file path)

about 4 years ago · Juan Pablo Isaza Report

0

Ok so I was doing some more research over the past few weeks and I realized I was coming about this all wrong. Require is a feature specific to node.js, and because chrome does not just automatically have node.js, it does not work. What I was attempting to do was read a JSON file and output it into some HTML so I can view it there. The solution I found is to get express.js and make an API. So something like

`

app.get("/api/database", (req, res) => {
    res.sendFile(__dirname + '/DB.json')
})

`

And on the HTML side you can add `

fetch('/api/database')
        .then(response => response.json())    
        .then(data => {    
            console.log(data.Input1)
            document.querySelector("#debug").innerText = data.Input1
        })

` With

<div id="debug"></div>

Right above the script tags.

Thanks to everyone who helped. The video I took the html side of the code can be found here.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!